home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 19.zip / BS1 part 19 / Lattice C disk 4.adf / Compiler_Headers / exec / errors.h < prev    next >
C/C++ Source or Header  |  1988-10-25  |  453b  |  19 lines

  1. #ifndef EXEC_ERRORS_H
  2. #define EXEC_ERRORS_H
  3. /*
  4. **    $Filename: exec/errors.h $
  5. **    $Release: 1.3 $
  6. **
  7. **    Standard IO Errors: 
  8. **
  9. **    (C) Copyright 1985,1986,1987,1988 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #define IOERR_OPENFAIL    -1    /* device/unit failed to open */
  14. #define IOERR_ABORTED    -2    /* request aborted */
  15. #define IOERR_NOCMD    -3    /* command not supported */
  16. #define IOERR_BADLENGTH -4    /* not a valid length */
  17.  
  18. #endif    /* EXEC_ERRORS_H */
  19.